home *** CD-ROM | disk | FTP | other *** search
- <<<<<<<<<<<<<<<<<<<<< COPY >>>>>>>>>>>>>>>>>>>>>
-
- PURPOSE: Copies one or more files. You have the option of giving the
- copy a different name. Additionally you may use COPY to transfer data
- between any of the system devices: COPY AUTOEXEC.BAT PRN copies a disk
- file to the printer.
-
- ; COPY AIRROUTE.DAT B: .. Copies the file AIRROUTE.DAT from
- ; the default drive and directory to
- ; the default directory on Drive B.
-
- ; COPY C:\*.COM A: /V .. Copies all files with the extension
- ; .COM that are in the ROOT directory
- ; of Drive C. The copy of the file
- ; is on Drive A. The /V causes DOS
- ; to verify that the data has been
- ; copied properly.
-
- ; COPY MEMO.DOC MEMO.BAK .. Makes a copy of MEMO.DOC in the
- ; same default directory as the
- ; original. When in the same directory
- ; as the original ... the copy must
- ; have a different file name.
- ###